{% extends "layout.html" %} {% block content %}

Quiz Results

{{ score }} / {{ total }}

You answered {{ score }} out of {{ total }} questions correctly.


Detailed Breakdown:

{% for res in results %} {% endfor %}
Question Your Answer Correct Answer Status
{{ res['question'] }} {{ res['your_answer'] }} {{ res['correct_answer'] }} {% if res['is_correct'] %} Correct {% else %} Wrong {% endif %}
Try Again Back to Home
{% endblock %}